home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 741 / rkrm_devices / rkrm_devices.lha / Serial / Terminate_Serial.c < prev   
C/C++ Source or Header  |  1992-09-03  |  5KB  |  127 lines

  1. /*
  2.  * Copyright (c) 1992 Commodore-Amiga, Inc.
  3.  * 
  4.  * This example is provided in electronic form by Commodore-Amiga, Inc. for 
  5.  * use with the "Amiga ROM Kernel Reference Manual: Devices", 3rd Edition, 
  6.  * published by Addison-Wesley (ISBN 0-201-56775-X).
  7.  * 
  8.  * The "Amiga ROM Kernel Reference Manual: Devices" contains additional 
  9.  * information on the correct usage of the techniques and operating system 
  10.  * functions presented in these examples.  The source and executable code 
  11.  * of these examples may only be distributed in free electronic form, via 
  12.  * bulletin board or as part of a fully non-commercial and freely 
  13.  * redistributable diskette.  Both the source and executable code (including 
  14.  * comments) must be included, without modification, in any copy.  This 
  15.  * example may not be published in printed form or distributed with any
  16.  * commercial product.  However, the programming techniques and support
  17.  * routines set forth in these examples may be used in the development
  18.  * of original executable software products for Commodore Amiga computers.
  19.  * 
  20.  * All other rights reserved.
  21.  * 
  22.  * This example is provided "as-is" and is subject to change; no
  23.  * warranties are made.  All use is at your own risk. No liability or
  24.  * responsibility is assumed.
  25.  *
  26.  *****************************************************************************
  27.  *
  28.  *
  29.  * Terminate_Serial.c
  30.  *
  31.  * This is an example of using a termination array for reads from the serial
  32.  * device. A termination array is set up for the characters Q, E, etx (CTRL-D)
  33.  * and eot (CTRL-C).  The EOFMODE flag is set in io_SerFlags to indicate that
  34.  * we want to use a termination array by sending the SDCMD_SETPARAMS command to
  35.  * the device.  Then, a CMD_READ command is sent to the device with
  36.  * io_Length set to 25.
  37.  *
  38.  * The read will terminate whenever one of the four characters in the termination
  39.  * array is received or when 25 characters have been received.
  40.  *
  41.  * Compile with SAS C 5.10  lc -b1 -cfistq -v -y -L
  42.  *
  43.  * Run from CLI only
  44.  */
  45.  
  46. #include <exec/types.h>
  47. #include <exec/memory.h>
  48. #include <exec/io.h>
  49. #include <devices/serial.h>
  50.  
  51. #include <clib/exec_protos.h>
  52. #include <clib/alib_protos.h>
  53.  
  54. #include <stdio.h>
  55.  
  56. #ifdef LATTICE
  57. int CXBRK(void) { return(0); }  /* Disable SAS CTRL/C handling */
  58. int chkabort(void) { return(0); }  /* really */
  59. #endif
  60.  
  61. void main(void)
  62. {
  63. struct MsgPort  *SerialMP;          /* Define storage for one pointer */
  64. struct IOExtSer *SerialIO;         /* Define storage for one pointer */
  65.  
  66. struct IOTArray Terminators =
  67. {
  68. 0x51450403,   /* Q E etx eot */
  69. 0x03030303    /* fill to end with lowest value */
  70. };
  71.  
  72. #define READ_BUFFER_SIZE 25
  73. UBYTE ReadBuff[READ_BUFFER_SIZE];
  74. UWORD ctr;
  75.  
  76. if (SerialMP=CreatePort(0,0) )
  77.     {
  78.     if (SerialIO=(struct IOExtSer *) CreateExtIO(SerialMP,sizeof(struct IOExtSer)))
  79.         {
  80.         if (OpenDevice(SERIALNAME,0L,(struct IORequest *)SerialIO,0) )
  81.             printf("%s did not open\n",SERIALNAME);
  82.         else
  83.             {
  84.              /* Tell user what we are doing */
  85.              printf("\fLooking for Q, E, EOT or ETX\n");
  86.  
  87.              /* Set EOF mode flag
  88.               * Set the termination array
  89.               * Send SDCMD_SETPARAMS to the serial device
  90.               */
  91.              SerialIO->io_SerFlags |= SERF_EOFMODE;
  92.              SerialIO->io_TermArray = Terminators;
  93.              SerialIO->IOSer.io_Command  = SDCMD_SETPARAMS;
  94.              if (DoIO((struct IORequest *)SerialIO))
  95.                  printf("Set Params failed ");   /* Inform user of error */
  96.              else
  97.                  {
  98.                  SerialIO->IOSer.io_Length   = READ_BUFFER_SIZE;
  99.                  SerialIO->IOSer.io_Data     = (APTR)&ReadBuff[0];
  100.                  SerialIO->IOSer.io_Command  = CMD_READ;
  101.                  if (DoIO((struct IORequest *)SerialIO))     /* Execute Read */
  102.                      printf("Error: Read failed\n");
  103.                  else
  104.                      {
  105.                       /* Display all characters received */
  106.                       printf("\nThese characters were read:\n\t\t\tASCII\tHEX\n");
  107.                       for (ctr=0;ctr<SerialIO->IOSer.io_Actual;ctr++)
  108.                            printf("\t\t\t  %c\t%x\n",ReadBuff[ctr],ReadBuff[ctr]);
  109.                       printf("\nThe actual number of characters read: %d\n",
  110.                                   SerialIO->IOSer.io_Actual);
  111.                       }
  112.                  }
  113.             CloseDevice((struct IORequest *)SerialIO);
  114.             }
  115.  
  116.         DeleteExtIO((struct IORequest *)SerialIO);
  117.         }
  118.     else
  119.         printf("Error: Could not create IORequest\n");
  120.  
  121.     DeletePort(SerialMP);
  122.     }
  123. else
  124.     printf("Error: Could not create message port\n");
  125. }
  126.  
  127.